home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 26 / Cream of the Crop 26.iso / program / vol16n13.zip / OPENTR.ZIP / OT_SRC.ZIP / OPENTRAP.H < prev    next >
C/C++ Source or Header  |  1997-05-26  |  1KB  |  53 lines

  1. // OpenTrap.h : main header file for the OPENTRAP application
  2. //
  3. // OpenTrap Version 1.00 by Gregory A. Wolking
  4. // Copyright ⌐ 1997 Ziff-Davis Publishing
  5. // First published in PC Magazine, US Edition, July 1997.
  6.  
  7. #ifndef __AFXWIN_H__
  8.     #error include 'stdafx.h' before including this file for PCH
  9. #endif
  10. #include "resource.h"
  11. /////////////////////////////////////////////////////////////////////////////
  12. // COpenTrapApp:
  13. // See OpenTrap.cpp for the implementation of this class
  14. //
  15.  
  16. class COpenTrapApp : public CWinApp
  17. {
  18. public:
  19.     COpenTrapApp();
  20.  
  21.  
  22. // Overrides
  23.     // ClassWizard generated virtual function overrides
  24.     //{{AFX_VIRTUAL(COpenTrapApp)
  25.     public:
  26.     virtual BOOL InitInstance();
  27.     virtual int ExitInstance();
  28.     //}}AFX_VIRTUAL
  29. protected:
  30.     // Used to intercept File MRU list update.
  31.     afx_msg void OnUpdateRecentFileMenu(CCmdUI* pCmdUI);
  32.  
  33. // Implementation
  34.  
  35.     //{{AFX_MSG(COpenTrapApp)
  36.     afx_msg void OnAppAbout();
  37.         // NOTE - the ClassWizard will add and remove member functions here.
  38.         //    DO NOT EDIT what you see in these blocks of generated code !
  39.     //}}AFX_MSG
  40.     DECLARE_MESSAGE_MAP()
  41. private:
  42.     // variables
  43.     ATOM myAtom;
  44.     BOOL m_bUninstall;
  45.     CString m_strRegDocType;
  46.     // Functions
  47.     void Do_Uninstall(void);
  48.     BOOL Check_Version(void);
  49. };
  50.  
  51.  
  52. /////////////////////////////////////////////////////////////////////////////
  53.